home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 8 / QRZ Ham Radio Callsign Database - Volume 8.iso / pc / files / ant_nec / nec_in_c.tz / nec_in_c / NEC2 / secnds.c < prev    next >
C/C++ Source or Header  |  1992-02-29  |  161b  |  14 lines

  1. #include <<sys/types.h>
  2. #include <sys/times.h>
  3.  
  4.  
  5.  
  6. void secnds_(x)
  7. double *x;
  8. {
  9. struct tms buffer;
  10. times(&buffer);
  11. *x = (double)buffer.tms_utime / 60.;
  12. return;
  13. }
  14.